home *** CD-ROM | disk | FTP | other *** search
- /*
- (c) 1990 S.Hawtin.
- Permission is granted to copy this file provided that:
- 1) It is not used for commercial gain
- 2) This notice is included in all copies
- 3) Altered copies are marked as such.
-
- No liability is accepted for the contents of the file.
-
- make.h within WBmake
-
- */
-
- #define EXE_FILE 0L
-
- typedef struct _str
- {struct _str *next;
- char contents[1];
- } String;
-
- #define MAKING 0x0001
-
- typedef struct
- {char *name;
- long type;
- long date;
- struct _cons *depends;
- String *create;
- int flags;
- } FileInfo;
-
- typedef struct _cons
- {FileInfo *car;
- struct _cons *cdr;
- } ConsCell;
-
- typedef struct _var
- {char *var;
- String *val;
- struct _var *next;
- } Variable;
-
-